home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FGL304C.ZIP;1 / EXC.ARJ / FGDOC / EXAMPLES / C / 03-01.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-24  |  158 b   |  13 lines

  1. #include <fastgraf.h>
  2.  
  3. void main(void);
  4.  
  5. void main()
  6. {
  7.    fg_setmode(3);
  8.    fg_cursor(0);
  9.  
  10.    fg_setcolor(15);
  11.    fg_text("Hello, world.",13);
  12. }
  13.